home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / networking / amitcp / httpd.lha / httpd / conf / srm.conf < prev   
Encoding:
Text File  |  1994-06-18  |  1.5 KB  |  51 lines

  1. # With this document, you define the name space that users see of your http
  2. # server.
  3.  
  4. # Rob (robm@ncsa.uiuc.edu)
  5.  
  6.  
  7. # DocumentRoot: The directory out of which you will serve your
  8. # documents. By default, all requests are taken from this directory, but
  9. # symbolic links and aliases may be used to point to other locations.
  10.  
  11. DocumentRoot http:docs
  12.  
  13. # UserDir: The name of the directory which is appended onto a user's home
  14. # directory if a ~user request is recieved.
  15.  
  16. UserDir public_html
  17.  
  18. # DirectoryIndex: Name of the file to use as a pre-written HTML
  19. # directory index
  20.  
  21. DirectoryIndex index.html
  22.  
  23. # AccessFileName: The name of the file to look for in each directory
  24. # for access control information.
  25.  
  26. AccessFileName .htaccess
  27.  
  28. # DefaultType is the default MIME type for documents which the server
  29. # cannot find the type of from filename extensions.
  30.  
  31. DefaultType text/plain
  32.  
  33. # AddType allows you to tweak mime.types without actually editing it, or to
  34. # make certain files to be certain types.
  35. # Format: AddType type/subtype ext1
  36.  
  37. # Redirect allows you to tell clients about documents which used to exist in
  38. # your server's namespace, but do not anymore. This allows you to tell the
  39. # clients where to look for the relocated document.
  40. # Format: Redirect fakename url
  41.  
  42.  
  43. # Aliases: Add here as many aliases as you need, up to 20. The format is 
  44. # Alias fakename realname
  45.  
  46.  
  47. # ScriptAlias: This controls which directories contain server scripts.
  48. # Format: ScriptAlias fakename realname
  49.  
  50. ScriptAlias /cgi-bin/ cgi-bin/
  51.